Remove "next refresh in" countdown from dashboard headers#23
Merged
Conversation
Agent-Logs-Url: https://github.com/metalaureate/tend-cli/sessions/4a8b3fec-68c9-4903-8eb5-632c216e603b Co-authored-by: metalaureate <[email protected]>
Agent-Logs-Url: https://github.com/metalaureate/tend-cli/sessions/4a8b3fec-68c9-4903-8eb5-632c216e603b Co-authored-by: metalaureate <[email protected]>
Copilot
AI
changed the title
[WIP] Remove the next update in element from table header
Remove "next refresh in" countdown from dashboard headers
Apr 7, 2026
Owner
|
@copilot merge to main |
Copilot stopped work on behalf of
metalaureate due to an error
April 8, 2026 02:00
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The countdown timer added clutter to the header bar across CLI, web board, and marketing site without providing meaningful value.
Changes
src/commands/dashboard.ts: Dropped· next refresh in Xsfrom the CLI header line; removed the now-unusedcountdown()function andsecsLeftparameter fromrenderHeaderLines(). Auto-refresh timer logic is untouched.relay/src/index.ts: Removed the countdown<span>from the statusbar HTML, stripped.countdown/.countdown.warnCSS, and collapsed the per-second interval tosetInterval(() => location.reload(), 60000).www/app/components.jsx: Removed the countdown segment from the status line; cleaned up unusedtickstate,useEffectinterval,secsLeft,countdown, andREFRESH_WARNING_THRESHOLD.relay/test/relay.test.ts: Dropped the assertion thatcountdownis present in the HTML;location.reloadcheck retained.